crypto/tls.Conn.input (field)

7 uses

	crypto/tls (current package)
		conn.go#L97: 	input     bytes.Reader // application data waiting to be read, from rawInput.Next
		conn.go#L607: 	if c.input.Len() != 0 {
		conn.go#L610: 	c.input.Reset(nil)
		conn.go#L749: 		c.input.Reset(data)
		conn.go#L1283: 	for c.input.Len() == 0 {
		conn.go#L1294: 	n, _ := c.input.Read(b)
		conn.go#L1303: 	if n != 0 && c.input.Len() == 0 && c.rawInput.Len() > 0 &&